{
	"info": {
		"_postman_id": "014c5ad5-151c-4681-a4f6-83065e6a77de",
		"name": "Standard Weather Package Postman Collection",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "1500784"
	},
	"item": [
		{
			"name": "Alerts",
			"item": [
				{
					"name": "Government Alerts Headlines",
					"item": [
						{
							"name": "Weather Alerts by Country Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/alerts/headlines?countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"alerts",
										"headlines"
									],
									"query": [
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Weather Alerts by Admin District Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/alerts/headlines?adminDistrictCode=GA:US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"alerts",
										"headlines"
									],
									"query": [
										{
											"key": "adminDistrictCode",
											"value": "GA:US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Weather Alerts by Area Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/alerts/headlines?areaId=FLC043:US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"alerts",
										"headlines"
									],
									"query": [
										{
											"key": "areaId",
											"value": "FLC043:US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Weather Alerts by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/alerts/headlines?geocode=32.69,-83.42&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"alerts",
										"headlines"
									],
									"query": [
										{
											"key": "geocode",
											"value": "32.69,-83.42"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Government Alert Details",
					"item": [
						{
							"name": "Weather Alert Detail by Alert Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/alerts/detail?alertId={{detailKey}}&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"alerts",
										"detail"
									],
									"query": [
										{
											"key": "alertId",
											"value": "{{detailKey}}",
											"description": "alertId is a specific identifier for an alert obtained from the detailKey in the Alert Headlines response."
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				}
			]
		},
		{
			"name": "Observations",
			"item": [
				{
					"name": "Currents On Demand",
					"item": [
						{
							"name": "Currents On Demand by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/observations/current?geocode=40.58,-111.66&units=e&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"observations",
										"current"
									],
									"query": [
										{
											"key": "geocode",
											"value": "40.58,-111.66"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Currents On Demand by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/observations/current?iataCode=DEN&units=e&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"observations",
										"current"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "DEN"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Currents On Demand by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/observations/current?icaoCode=KDEN&units=e&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"observations",
										"current"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KDEN"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Currents On Demand by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/observations/current?placeid=327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b&units=e&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"observations",
										"current"
									],
									"query": [
										{
											"key": "placeid",
											"value": "327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Currents On Demand by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/observations/current?postalKey=81657:US&units=e&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"observations",
										"current"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "81657:US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Historical Conditions",
					"item": [
						{
							"name": "Historical Conditions - Daily Summary",
							"item": [
								{
									"name": "Historical Conditions (30 Days) by Geocode",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/conditions/historical/dailysummary/30day?geocode=33.74,-84.39&language=en-US&format=json&units=e&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"conditions",
												"historical",
												"dailysummary",
												"30day"
											],
											"query": [
												{
													"key": "geocode",
													"value": "33.74,-84.39"
												},
												{
													"key": "language",
													"value": "en-US"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Historical Conditions (30 Days) by IATA Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/conditions/historical/dailysummary/30day?iataCode=FCO&language=en-US&format=json&units=e&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"conditions",
												"historical",
												"dailysummary",
												"30day"
											],
											"query": [
												{
													"key": "iataCode",
													"value": "FCO"
												},
												{
													"key": "language",
													"value": "en-US"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Historical Conditions (30 Days) by ICAO Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/conditions/historical/dailysummary/30day?icaoCode=LIRF&language=en-US&format=json&units=e&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"conditions",
												"historical",
												"dailysummary",
												"30day"
											],
											"query": [
												{
													"key": "icaoCode",
													"value": "LIRF"
												},
												{
													"key": "language",
													"value": "en-US"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Historical Conditions (30 Days) by Place Id",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/conditions/historical/dailysummary/30day?placeid=25d07eca1bcda02800c1a9e699d7eb1c8132cad9bc2d6efa8a2531f0ee4a81cd&language=en-US&format=json&units=e&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"conditions",
												"historical",
												"dailysummary",
												"30day"
											],
											"query": [
												{
													"key": "placeid",
													"value": "25d07eca1bcda02800c1a9e699d7eb1c8132cad9bc2d6efa8a2531f0ee4a81cd"
												},
												{
													"key": "language",
													"value": "en-US"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Historical Conditions (30 Days) by Postal Key",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/conditions/historical/dailysummary/30day?postalKey=30339:US&language=en-US&format=json&units=e&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"conditions",
												"historical",
												"dailysummary",
												"30day"
											],
											"query": [
												{
													"key": "postalKey",
													"value": "30339:US"
												},
												{
													"key": "language",
													"value": "en-US"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								}
							]
						},
						{
							"name": "Historical Conditions - Hourly",
							"item": [
								{
									"name": "Historical Conditions (24 Hours) by Geocode",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/conditions/historical/hourly/1day?geocode=33.74,-84.39&language=en-US&format=json&units=e&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"conditions",
												"historical",
												"hourly",
												"1day"
											],
											"query": [
												{
													"key": "geocode",
													"value": "33.74,-84.39"
												},
												{
													"key": "language",
													"value": "en-US"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Historical Conditions (24 Hours) by IATA Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/conditions/historical/hourly/1day?iataCode=FCO&language=en-US&format=json&units=e&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"conditions",
												"historical",
												"hourly",
												"1day"
											],
											"query": [
												{
													"key": "iataCode",
													"value": "FCO"
												},
												{
													"key": "language",
													"value": "en-US"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Historical Conditions (24 Hours) by ICAO Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/conditions/historical/hourly/1day?icaoCode=LIRF&language=en-US&format=json&units=e&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"conditions",
												"historical",
												"hourly",
												"1day"
											],
											"query": [
												{
													"key": "icaoCode",
													"value": "LIRF"
												},
												{
													"key": "language",
													"value": "en-US"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Historical Conditions (24 Hours) by Place Id",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/conditions/historical/hourly/1day?placeid=25d07eca1bcda02800c1a9e699d7eb1c8132cad9bc2d6efa8a2531f0ee4a81cd&language=en-US&format=json&units=e&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"conditions",
												"historical",
												"hourly",
												"1day"
											],
											"query": [
												{
													"key": "placeid",
													"value": "25d07eca1bcda02800c1a9e699d7eb1c8132cad9bc2d6efa8a2531f0ee4a81cd"
												},
												{
													"key": "language",
													"value": "en-US"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Historical Conditions (24 Hours) by Postal Key",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/conditions/historical/hourly/1day?postalKey=30339:US&language=en-US&format=json&units=e&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"conditions",
												"historical",
												"hourly",
												"1day"
											],
											"query": [
												{
													"key": "postalKey",
													"value": "30339:US"
												},
												{
													"key": "language",
													"value": "en-US"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								}
							]
						}
					]
				},
				{
					"name": "Site-Based Observations",
					"item": [
						{
							"name": "Site-Based Observations by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/geocode/34.063/-84.217/observations.json?language=en-US&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"geocode",
										"34.063",
										"-84.217",
										"observations.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Site-Based Observations by Postal Location Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/location/30075:4:US/observations.json?language=en-US&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"location",
										"30075:4:US",
										"observations.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Time-Series Observations",
					"item": [
						{
							"name": "Time-Series Observations by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/geocode/34.063/-84.217/observations/timeseries.json?language=en-US&units=e&hours=4&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"geocode",
										"34.063",
										"-84.217",
										"observations",
										"timeseries.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "hours",
											"value": "4"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Time-Series Observations by Postal Location Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/location/30075:4:US/observations/timeseries.json?language=en-US&units=e&hours=4&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"location",
										"30075:4:US",
										"observations",
										"timeseries.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "hours",
											"value": "4"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				}
			]
		},
		{
			"name": "Forecasts",
			"item": [
				{
					"name": "Daily Forecasts",
					"item": [
						{
							"name": "Daily Forecasts (3 Days) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/3day?geocode=33.74,-84.39&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"3day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (3 Days) by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/3day?iataCode=ATL&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"3day"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "ATL"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (3 Days) by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/3day?icaoCode=KATL&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"3day"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KATL"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (3 Days) by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/3day?placeid=327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"3day"
									],
									"query": [
										{
											"key": "placeid",
											"value": "327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (3 Days) by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/3day?postalKey=81657:US&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"3day"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "81657:US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (5 Days) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/5day?geocode=33.74,-84.39&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"5day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (5 Days) by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/5day?iataCode=ATL&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"5day"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "ATL"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (5 Days) by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/5day?icaoCode=KATL&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"5day"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KATL"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (5 Days) by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/5day?placeid=327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"5day"
									],
									"query": [
										{
											"key": "placeid",
											"value": "327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (5 Days) by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/5day?postalKey=81657:US&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"5day"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "81657:US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (7 Days) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/7day?geocode=33.74,-84.39&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"7day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (7 Days) by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/7day?iataCode=ATL&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"7day"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "ATL"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (7 Days) by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/7day?placeid=327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"7day"
									],
									"query": [
										{
											"key": "placeid",
											"value": "327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (7 Days) by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/7day?postalKey=81657:US&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"7day"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "81657:US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (7 Days) by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/7day?icaoCode=KATL&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"7day"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KATL"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (10 Days) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/10day?geocode=33.74,-84.39&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"10day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (10 Days) by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/10day?iataCode=ATL&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"10day"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "ATL"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (10 Days) by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/10day?icaoCode=KATL&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"10day"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KATL"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (10 Days) by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/10day?placeid=327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"10day"
									],
									"query": [
										{
											"key": "placeid",
											"value": "327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (10 Days) by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/10day?postalKey=81657:US&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"10day"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "81657:US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (15 Days) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/15day?geocode=33.74,-84.39&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"15day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (15 Days) by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/15day?icaoCode=KATL&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"15day"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KATL"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (15 Days) by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/15day?iataCode=ATL&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"15day"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "ATL"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (15 Days) by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/15day?placeid=327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"15day"
									],
									"query": [
										{
											"key": "placeid",
											"value": "327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Daily Forecasts (15 Days) by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/daily/15day?postalKey=81657:US&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"daily",
										"15day"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "81657:US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Hourly Forecasts",
					"item": [
						{
							"name": "Hourly Forecasts (2 Days) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/2day?geocode=33.74,-84.39&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"2day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Hourly Forecasts (2 Days) by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/2day?iataCode=DEN&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"2day"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "DEN"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Hourly Forecasts (2 Days) by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/2day?icaoCode=KDEN&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"2day"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KDEN"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Hourly Forecasts (2 Days) by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/2day?placeid=327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"2day"
									],
									"query": [
										{
											"key": "placeid",
											"value": "327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Hourly Forecasts (2 Days) by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/2day?postalKey=81657:US&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"2day"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "81657:US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Hourly Forecasts (15 Days) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/15day?geocode=33.74,-84.39&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"15day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Hourly Forecasts (15 Days) by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/15day?iataCode=DEN&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"15day"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "DEN"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Hourly Forecasts (15 Days) by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/15day?icaoCode=KDEN&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"15day"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KDEN"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Hourly Forecasts (15 Days) by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/15day?placeid=327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"15day"
									],
									"query": [
										{
											"key": "placeid",
											"value": "327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Hourly Forecasts (15 Days) by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/15day?postalKey=81657:US&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"15day"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "81657:US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Hourly Forecasts - Enterprise",
					"item": [
						{
							"name": "Enterprise Hourly Forecasts (6 Hours) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/6hour/enterprise?geocode=33.74,-84.39&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"6hour",
										"enterprise"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (6 Hours) by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/6hour/enterprise?iataCode=DEN&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"6hour",
										"enterprise"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "DEN"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (6 Hours) by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/6hour/enterprise?icaoCode=KDEN&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"6hour",
										"enterprise"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KDEN"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (6 Hours) by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/6hour/enterprise?placeid=327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"6hour",
										"enterprise"
									],
									"query": [
										{
											"key": "placeid",
											"value": "327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (6 Hours) by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/6hour/enterprise?postalKey=81657:US&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"6hour",
										"enterprise"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "81657:US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (12 Hours) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/12hour/enterprise?geocode=33.74,-84.39&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"12hour",
										"enterprise"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (12 Hours) by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/12hour/enterprise?iataCode=DEN&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"12hour",
										"enterprise"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "DEN"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (12 Hours) by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/12hour/enterprise?icaoCode=KDEN&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"12hour",
										"enterprise"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KDEN"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (12 Hours) by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/12hour/enterprise?placeid=327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"12hour",
										"enterprise"
									],
									"query": [
										{
											"key": "placeid",
											"value": "327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (12 Hours) by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/12hour/enterprise?postalKey=81657:US&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"12hour",
										"enterprise"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "81657:US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (1 Day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/1day/enterprise?geocode=33.74,-84.39&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"1day",
										"enterprise"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (1 Day) by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/1day/enterprise?iataCode=DEN&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"1day",
										"enterprise"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "DEN"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (1 Day) by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/1day/enterprise?icaoCode=KDEN&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"1day",
										"enterprise"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KDEN"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (1 Day) by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/1day/enterprise?placeid=327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"1day",
										"enterprise"
									],
									"query": [
										{
											"key": "placeid",
											"value": "327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (1 Day) by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/1day/enterprise?postalKey=81657:US&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"1day",
										"enterprise"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "81657:US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (2 Days) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/2day/enterprise?geocode=33.74,-84.39&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"2day",
										"enterprise"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (2 Days) by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/2day/enterprise?iataCode=DEN&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"2day",
										"enterprise"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "DEN"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (2 Days) by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/2day/enterprise?icaoCode=KDEN&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"2day",
										"enterprise"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KDEN"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (2 Days) by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/2day/enterprise?placeid=327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"2day",
										"enterprise"
									],
									"query": [
										{
											"key": "placeid",
											"value": "327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (2 Days) by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/2day/enterprise?postalKey=81657:US&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"2day",
										"enterprise"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "81657:US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (3 Days) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/3day/enterprise?geocode=33.74,-84.39&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"3day",
										"enterprise"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (3 Days) by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/3day/enterprise?iataCode=DEN&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"3day",
										"enterprise"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "DEN"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (3 Days) by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/3day/enterprise?icaoCode=KDEN&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"3day",
										"enterprise"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KDEN"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (3 Days) by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/3day/enterprise?placeid=327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"3day",
										"enterprise"
									],
									"query": [
										{
											"key": "placeid",
											"value": "327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (3 Days) by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/3day/enterprise?postalKey=81657:US&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"3day",
										"enterprise"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "81657:US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (10 Days) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/10day/enterprise?geocode=33.74,-84.39&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"10day",
										"enterprise"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (10 Days) by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/10day/enterprise?iataCode=DEN&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"10day",
										"enterprise"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "DEN"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (10 Days) by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/10day/enterprise?icaoCode=KDEN&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"10day",
										"enterprise"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KDEN"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (10 Days) by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/10day/enterprise?placeid=327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"10day",
										"enterprise"
									],
									"query": [
										{
											"key": "placeid",
											"value": "327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (10 Days) by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/10day/enterprise?postalKey=81657:US&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"10day",
										"enterprise"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "81657:US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (15 Days) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/15day/enterprise?geocode=33.74,-84.39&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"15day",
										"enterprise"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (15 Days) by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/15day/enterprise?iataCode=DEN&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"15day",
										"enterprise"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "DEN"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (15 Days) by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/15day/enterprise?icaoCode=KDEN&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"15day",
										"enterprise"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KDEN"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (15 Days) by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/15day/enterprise?placeid=327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"15day",
										"enterprise"
									],
									"query": [
										{
											"key": "placeid",
											"value": "327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Enterprise Hourly Forecasts (15 Days) by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/hourly/15day/enterprise?postalKey=81657:US&format=json&units=e&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"hourly",
										"15day",
										"enterprise"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "81657:US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Intraday Forecasts",
					"item": [
						{
							"name": "Intraday Forecasts (3 Days) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/geocode/34.063/-84.217/forecast/intraday/3day.json?language=en-US&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"geocode",
										"34.063",
										"-84.217",
										"forecast",
										"intraday",
										"3day.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Intraday Forecasts (3 Days) by Postal Location Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/location/30339:4:US/forecast/intraday/3day.json?language=en-US&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"location",
										"30339:4:US",
										"forecast",
										"intraday",
										"3day.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Intraday Forecasts (5 Days) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/geocode/34.063/-84.217/forecast/intraday/5day.json?language=en-US&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"geocode",
										"34.063",
										"-84.217",
										"forecast",
										"intraday",
										"5day.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Intraday Forecasts (5 Days) by Postal Location Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/location/30339:4:US/forecast/intraday/5day.json?language=en-US&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"location",
										"30339:4:US",
										"forecast",
										"intraday",
										"5day.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Intraday Forecasts (7 Days) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/geocode/34.063/-84.217/forecast/intraday/7day.json?language=en-US&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"geocode",
										"34.063",
										"-84.217",
										"forecast",
										"intraday",
										"7day.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Intraday Forecasts (7 Days) by Postal Location Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/location/30339:4:US/forecast/intraday/7day.json?language=en-US&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"location",
										"30339:4:US",
										"forecast",
										"intraday",
										"7day.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Intraday Forecasts (10 Days) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/geocode/34.063/-84.217/forecast/intraday/10day.json?language=en-US&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"geocode",
										"34.063",
										"-84.217",
										"forecast",
										"intraday",
										"10day.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Intraday Forecasts (10 Days) by Postal Location Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/location/30339:4:US/forecast/intraday/10day.json?language=en-US&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"location",
										"30339:4:US",
										"forecast",
										"intraday",
										"10day.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Intraday Forecasts (15 Days) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/geocode/34.063/-84.217/forecast/intraday/15day.json?language=en-US&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"geocode",
										"34.063",
										"-84.217",
										"forecast",
										"intraday",
										"15day.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Intraday Forecasts (15 Days) by Postal Location Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/location/30339:4:US/forecast/intraday/15day.json?language=en-US&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"location",
										"30339:4:US",
										"forecast",
										"intraday",
										"15day.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "15 Minute Forecasts",
					"item": [
						{
							"name": "15 Minute Forecasts by Geocode",
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/fifteenminute?geocode=40.58,-111.66&units=e&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"fifteenminute"
									],
									"query": [
										{
											"key": "geocode",
											"value": "40.58,-111.66"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "15 Minute Forecasts by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/fifteenminute?iataCode=DEN&units=e&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"fifteenminute"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "DEN"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "15 Minute Forecasts by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/fifteenminute?icaoCode=KDEN&units=e&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"fifteenminute"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KDEN"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "15 Minute Forecasts by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/fifteenminute?placeid=327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b&units=e&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"fifteenminute"
									],
									"query": [
										{
											"key": "placeid",
											"value": "327145917e06d09373dd2760425a88622a62d248fd97550eb4883737d8d1173b"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "15 Minute Forecasts by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/fifteenminute?postalKey=81657:US&units=e&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"fifteenminute"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "81657:US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Nowcast Forecasts",
					"item": [
						{
							"name": "Nowcast Forecasts by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/geocode/34.063/-84.217/forecast/nowcast.json?language=en-US&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"geocode",
										"34.063",
										"-84.217",
										"forecast",
										"nowcast.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Nowcast Forecasts by Postal Location Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/location/30075:4:US/forecast/nowcast.json?language=en-US&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"location",
										"30075:4:US",
										"forecast",
										"nowcast.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Precipitation Forecasts",
					"item": [
						{
							"name": "Precipitation Forecasts by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/geocode/34.063/-84.217/forecast/precipitation.json?language=en-US&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"geocode",
										"34.063",
										"-84.217",
										"forecast",
										"precipitation.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Precipitation Forecasts by Postal Location Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/location/30075:4:US/forecast/precipitation.json?language=en-US&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"location",
										"30075:4:US",
										"forecast",
										"precipitation.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "When Will It Rain Forecasts",
					"item": [
						{
							"name": "When Will It Rain Forecasts by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/geocode/34.063/-84.217/forecast/wwir.json?language=en-US&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"geocode",
										"34.063",
										"-84.217",
										"forecast",
										"wwir.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "When Will It Rain Forecasts by Postal Location Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/location/30075:4:US/forecast/wwir.json?language=en-US&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"location",
										"30075:4:US",
										"forecast",
										"wwir.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Forecast Data for Analytical Tooling",
					"item": [
						{
							"name": "Forecast Data for Analytical Tooling by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/analytical/r2?geocode=42.0,-89.5&productId=Temperature&language=en-US&units=s&format=csv&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"analytical",
										"r2"
									],
									"query": [
										{
											"key": "geocode",
											"value": "42.0,-89.5"
										},
										{
											"key": "productId",
											"value": "Temperature"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "s"
										},
										{
											"key": "format",
											"value": "csv"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Forecast Data for Analytical Tooling by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/analytical/r2?postalKey=81657:US&productId=Temperature&language=en-US&units=s&format=csv&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"analytical",
										"r2"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "81657:US"
										},
										{
											"key": "productId",
											"value": "Temperature"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "s"
										},
										{
											"key": "format",
											"value": "csv"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Forecast Data for Analytical Tooling Product Discovery",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/analytical/r2/products?apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"analytical",
										"r2",
										"products"
									],
									"query": [
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				}
			]
		},
		{
			"name": "Lifestyle",
			"item": [
				{
					"name": "Almanac",
					"item": [
						{
							"name": "Almanac Daily",
							"item": [
								{
									"name": "Daily Almanac (1 Day) by Geocode",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/1day?geocode=33.33,-83.22&format=json&units=e&day=1&month=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"1day"
											],
											"query": [
												{
													"key": "geocode",
													"value": "33.33,-83.22"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "day",
													"value": "1"
												},
												{
													"key": "month",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (1 Day) by IATA Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/1day?iataCode=DEN&format=json&units=e&day=1&month=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"1day"
											],
											"query": [
												{
													"key": "iataCode",
													"value": "DEN"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "day",
													"value": "1"
												},
												{
													"key": "month",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (1 Day) by ICAO Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/1day?icaoCode=KDEN&format=json&units=e&day=1&month=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"1day"
											],
											"query": [
												{
													"key": "icaoCode",
													"value": "KDEN"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "day",
													"value": "1"
												},
												{
													"key": "month",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (1 Day) by Place Id",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/1day?placeid=ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7&format=json&units=e&day=1&month=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"1day"
											],
											"query": [
												{
													"key": "placeid",
													"value": "ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "day",
													"value": "1"
												},
												{
													"key": "month",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (1 Day) by Postal Key",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/1day?postalKey=81657:US&format=json&units=e&day=1&month=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"1day"
											],
											"query": [
												{
													"key": "postalKey",
													"value": "81657:US"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "day",
													"value": "1"
												},
												{
													"key": "month",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (5 Days) by Geocode",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/5day?geocode=33.33,-83.22&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"5day"
											],
											"query": [
												{
													"key": "geocode",
													"value": "33.33,-83.22"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (5 Days) by IATA Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/5day?iataCode=DEN&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"5day"
											],
											"query": [
												{
													"key": "iataCode",
													"value": "DEN"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (5 Days) by ICAO Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/5day?icaoCode=KDEN&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"5day"
											],
											"query": [
												{
													"key": "icaoCode",
													"value": "KDEN"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (5 Days) by Place Id",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/5day?placeid=ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"5day"
											],
											"query": [
												{
													"key": "placeid",
													"value": "ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (5 Days) by Postal Key",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/5day?postalKey=81657:US&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"5day"
											],
											"query": [
												{
													"key": "postalKey",
													"value": "81657:US"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (7 Days) by Geocode",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/7day?geocode=33.33,-83.22&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"7day"
											],
											"query": [
												{
													"key": "geocode",
													"value": "33.33,-83.22"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (7 Days) by IATA Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/7day?iataCode=DEN&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"7day"
											],
											"query": [
												{
													"key": "iataCode",
													"value": "DEN"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (7 Days) by ICAO Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/7day?icaoCode=KDEN&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"7day"
											],
											"query": [
												{
													"key": "icaoCode",
													"value": "KDEN"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (7 Days) by Place Id",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/7day?placeid=ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"7day"
											],
											"query": [
												{
													"key": "placeid",
													"value": "ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (7 Days) by Postal Key",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/7day?postalKey=81657:US&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"7day"
											],
											"query": [
												{
													"key": "postalKey",
													"value": "81657:US"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (10 Days) by Geocode",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/10day?geocode=33.33,-83.22&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"10day"
											],
											"query": [
												{
													"key": "geocode",
													"value": "33.33,-83.22"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (10 Days) by IATA Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/10day?iataCode=DEN&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"10day"
											],
											"query": [
												{
													"key": "iataCode",
													"value": "DEN"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (10 Days) by ICAO Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/10day?icaoCode=KDEN&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"10day"
											],
											"query": [
												{
													"key": "icaoCode",
													"value": "KDEN"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (10 Days) by Place Id",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/10day?placeid=ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"10day"
											],
											"query": [
												{
													"key": "placeid",
													"value": "ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (10 Days) by Postal Key",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/10day?postalKey=81657:US&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"10day"
											],
											"query": [
												{
													"key": "postalKey",
													"value": "81657:US"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (15 Days) by Geocode",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/15day?geocode=33.33,-83.22&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"15day"
											],
											"query": [
												{
													"key": "geocode",
													"value": "33.33,-83.22"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (15 Days) by IATA Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/15day?iataCode=DEN&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"15day"
											],
											"query": [
												{
													"key": "iataCode",
													"value": "DEN"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (15 Days) by ICAO Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/15day?icaoCode=KDEN&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"15day"
											],
											"query": [
												{
													"key": "icaoCode",
													"value": "KDEN"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (15 Days) by Place Id",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/15day?placeid=ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"15day"
											],
											"query": [
												{
													"key": "placeid",
													"value": "ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (15 Days) by Postal Key",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/15day?postalKey=81657:US&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"15day"
											],
											"query": [
												{
													"key": "postalKey",
													"value": "81657:US"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (30 Days) by Geocode",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/30day?geocode=33.33,-83.22&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"30day"
											],
											"query": [
												{
													"key": "geocode",
													"value": "33.33,-83.22"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (30 Days) by IATA Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/30day?iataCode=DEN&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"30day"
											],
											"query": [
												{
													"key": "iataCode",
													"value": "DEN"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (30 Days) by ICAO Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/30day?icaoCode=KDEN&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"30day"
											],
											"query": [
												{
													"key": "icaoCode",
													"value": "KDEN"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (30 Days) by Place Id",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/30day?placeid=ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"30day"
											],
											"query": [
												{
													"key": "placeid",
													"value": "ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (30 Days) by Postal Key",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/30day?postalKey=81657:US&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"30day"
											],
											"query": [
												{
													"key": "postalKey",
													"value": "81657:US"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (45 Days) by Geocode",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/45day?geocode=33.33,-83.22&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"45day"
											],
											"query": [
												{
													"key": "geocode",
													"value": "33.33,-83.22"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (45 Days) by IATA Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/45day?iataCode=DEN&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"45day"
											],
											"query": [
												{
													"key": "iataCode",
													"value": "DEN"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (45 Days) by ICAO Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/45day?icaoCode=KDEN&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"45day"
											],
											"query": [
												{
													"key": "icaoCode",
													"value": "KDEN"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (45 Days) by Place Id",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/45day?placeid=ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"45day"
											],
											"query": [
												{
													"key": "placeid",
													"value": "ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Daily Almanac (45 Days) by Postal Key",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/daily/45day?postalKey=81657:US&format=json&units=e&startDay=1&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"daily",
												"45day"
											],
											"query": [
												{
													"key": "postalKey",
													"value": "81657:US"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startDay",
													"value": "1"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								}
							]
						},
						{
							"name": "Almanac Monthly",
							"item": [
								{
									"name": "Monthly Almanac (1 Month) by Geocode",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/monthly/1month?geocode=34,-84&format=json&units=e&month=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"monthly",
												"1month"
											],
											"query": [
												{
													"key": "geocode",
													"value": "34,-84"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "month",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Monthly Almanac (1 Month) by IATA Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/monthly/1month?iataCode=DEN&format=json&units=e&month=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"monthly",
												"1month"
											],
											"query": [
												{
													"key": "iataCode",
													"value": "DEN"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "month",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Monthly Almanac (1 Month) by ICAO Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/monthly/1month?icaoCode=KDEN&format=json&units=e&month=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"monthly",
												"1month"
											],
											"query": [
												{
													"key": "icaoCode",
													"value": "KDEN"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "month",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Monthly Almanac (1 Month) by Place Id",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/monthly/1month?placeid=ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7&format=json&units=e&month=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"monthly",
												"1month"
											],
											"query": [
												{
													"key": "placeid",
													"value": "ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "month",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Monthly Almanac (1 Month) by Postal Key",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/monthly/1month?postalKey=81657:US&format=json&units=e&month=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"monthly",
												"1month"
											],
											"query": [
												{
													"key": "postalKey",
													"value": "81657:US"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "month",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Monthly Almanac (3 Months) by Geocode",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/monthly/3month?geocode=34,-84&format=json&units=e&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"monthly",
												"3month"
											],
											"query": [
												{
													"key": "geocode",
													"value": "34,-84"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Monthly Almanac (3 Months) by IATA Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/monthly/3month?iataCode=DEN&format=json&units=e&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"monthly",
												"3month"
											],
											"query": [
												{
													"key": "iataCode",
													"value": "DEN"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Monthly Almanac (3 Months) by ICAO Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/monthly/3month?icaoCode=KDEN&format=json&units=e&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"monthly",
												"3month"
											],
											"query": [
												{
													"key": "icaoCode",
													"value": "KDEN"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Monthly Almanac (3 Months) by Place Id",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/monthly/3month?placeid=ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7&format=json&units=e&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"monthly",
												"3month"
											],
											"query": [
												{
													"key": "placeid",
													"value": "ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Monthly Almanac (3 Months) by Postal Key",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/monthly/3month?postalKey=81657:US&format=json&units=e&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"monthly",
												"3month"
											],
											"query": [
												{
													"key": "postalKey",
													"value": "81657:US"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Monthly Almanac (6 Months) by Geocode",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/monthly/6month?geocode=34,-84&format=json&units=e&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"monthly",
												"6month"
											],
											"query": [
												{
													"key": "geocode",
													"value": "34,-84"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Monthly Almanac (6 Months) by IATA Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/monthly/6month?iataCode=DEN&format=json&units=e&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"monthly",
												"6month"
											],
											"query": [
												{
													"key": "iataCode",
													"value": "DEN"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Monthly Almanac (6 Months) by ICAO Code",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/monthly/6month?icaoCode=KDEN&format=json&units=e&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"monthly",
												"6month"
											],
											"query": [
												{
													"key": "icaoCode",
													"value": "KDEN"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Monthly Almanac (6 Months) by Place Id",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/monthly/6month?placeid=ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7&format=json&units=e&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"monthly",
												"6month"
											],
											"query": [
												{
													"key": "placeid",
													"value": "ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								},
								{
									"name": "Monthly Almanac (6 Months) by Postal Key",
									"request": {
										"auth": {
											"type": "noauth"
										},
										"method": "GET",
										"header": [],
										"url": {
											"raw": "https://api.weather.com/v3/wx/almanac/monthly/6month?postalKey=81657:US&format=json&units=e&startMonth=12&apiKey={{yourApiKey}}",
											"protocol": "https",
											"host": [
												"api",
												"weather",
												"com"
											],
											"path": [
												"v3",
												"wx",
												"almanac",
												"monthly",
												"6month"
											],
											"query": [
												{
													"key": "postalKey",
													"value": "81657:US"
												},
												{
													"key": "format",
													"value": "json"
												},
												{
													"key": "units",
													"value": "e"
												},
												{
													"key": "startMonth",
													"value": "12"
												},
												{
													"key": "apiKey",
													"value": "{{yourApiKey}}"
												}
											]
										}
									},
									"response": []
								}
							]
						}
					]
				},
				{
					"name": "Air Quality - Global",
					"item": [
						{
							"name": "Current Air Quality by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/globalAirQuality?geocode=39.904,116.407&language=en-US&scale=EPA&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"globalAirQuality"
									],
									"query": [
										{
											"key": "geocode",
											"value": "39.904,116.407"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "scale",
											"value": "EPA"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Current Air Quality by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/globalAirQuality?iataCode=FCO&language=en-US&scale=EPA&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"globalAirQuality"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "FCO"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "scale",
											"value": "EPA"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Current Air Quality by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/globalAirQuality?icaoCode=LIRF&language=en-US&scale=EPA&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"globalAirQuality"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "LIRF"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "scale",
											"value": "EPA"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Current Air Quality by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/globalAirQuality?placeid=25d07eca1bcda02800c1a9e699d7eb1c8132cad9bc2d6efa8a2531f0ee4a81cd&language=en-US&scale=EPA&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"globalAirQuality"
									],
									"query": [
										{
											"key": "placeid",
											"value": "25d07eca1bcda02800c1a9e699d7eb1c8132cad9bc2d6efa8a2531f0ee4a81cd"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "scale",
											"value": "EPA"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Current Air Quality by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/globalAirQuality?postalKey=30339:US&language=en-US&scale=EPA&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"globalAirQuality"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "30339:US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "scale",
											"value": "EPA"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "U.S. Flu Historical",
					"item": [
						{
							"name": "Flu Historical (1 Month) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/flu/historical/1month?geocode=33.33,-83.22&language=en-US&format=json&yearMonth=202201&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"flu",
										"historical",
										"1month"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.33,-83.22"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "yearMonth",
											"value": "202201"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Flu Historical (1 Month) by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/flu/historical/1month?iataCode=LGA&language=en-US&format=json&yearMonth=202401&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"flu",
										"historical",
										"1month"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "LGA"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "yearMonth",
											"value": "202401"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Flu Historical (1 Month) by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/flu/historical/1month?icaoCode=KATL&language=en-US&format=json&yearMonth=202201&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"flu",
										"historical",
										"1month"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KATL"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "yearMonth",
											"value": "202201"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Flu Historical (1 Month) by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/flu/historical/1month?placeid=ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7&language=en-US&format=json&yearMonth=201901&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"flu",
										"historical",
										"1month"
									],
									"query": [
										{
											"key": "placeid",
											"value": "ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "yearMonth",
											"value": "201901"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Flu Historical (1 Month) by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/flu/historical/1month?postalKey=30339:US&language=en-US&format=json&yearMonth=201901&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"flu",
										"historical",
										"1month"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "30339:US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "yearMonth",
											"value": "201901"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Flu Historical (1 Year) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/flu/historical/1year?geocode=33.33,-83.22&language=en-US&format=json&year=2023&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"flu",
										"historical",
										"1year"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.33,-83.22"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "year",
											"value": "2023"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Flu Historical (1 Year) by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/flu/historical/1year?iataCode=ATL&language=en-US&format=json&year=2023&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"flu",
										"historical",
										"1year"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "ATL"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "year",
											"value": "2023"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Flu Historical (1 Year) by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/flu/historical/1year?icaoCode=KATL&language=en-US&format=json&year=2023&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"flu",
										"historical",
										"1year"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KATL"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "year",
											"value": "2023"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Flu Historical (1 Year) by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/flu/historical/1year?placeid=ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7&language=en-US&format=json&year=2023&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"flu",
										"historical",
										"1year"
									],
									"query": [
										{
											"key": "placeid",
											"value": "ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "year",
											"value": "2023"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Flu Historical (1 Year) by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/flu/historical/1year?postalKey=30339:US&language=en-US&format=json&year=2023&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"flu",
										"historical",
										"1year"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "30339:US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "year",
											"value": "2023"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "U.S. Pollen Historical",
					"item": [
						{
							"name": "Pollen Historical (1 Day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/indices/pollen/historical/1day?geocode=33.33,-83.22&language=en-US&format=json&date=20240802&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"indices",
										"pollen",
										"historical",
										"1day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.33,-83.22"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "date",
											"value": "20240802"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Pollen Historical (1 Day) by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/indices/pollen/historical/1day?iataCode=ATL&language=en-US&format=json&date=20240802&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"indices",
										"pollen",
										"historical",
										"1day"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "ATL"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "date",
											"value": "20240802"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Pollen Historical (1 Day) by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/indices/pollen/historical/1day?icaoCode=KATL&language=en-US&format=json&date=20240802&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"indices",
										"pollen",
										"historical",
										"1day"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KATL"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "date",
											"value": "20240802"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Pollen Historical (1 Day) by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/indices/pollen/historical/1day?placeid=ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7&language=en-US&format=json&date=20240802&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"indices",
										"pollen",
										"historical",
										"1day"
									],
									"query": [
										{
											"key": "placeid",
											"value": "ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "date",
											"value": "20240802"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Pollen Historical (1 Day) by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/indices/pollen/historical/1day?postalKey=30339:US&language=en-US&format=json&date=20240802&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"indices",
										"pollen",
										"historical",
										"1day"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "30339:US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "date",
											"value": "20240802"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Pollen Historical (1 Week) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/indices/pollen/historical/1week?geocode=33.33,-83.22&language=en-US&format=json&weekOf=20170801&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"indices",
										"pollen",
										"historical",
										"1week"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.33,-83.22"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "weekOf",
											"value": "20170801"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Pollen Historical (1 Week) by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/indices/pollen/historical/1week?iataCode=LGA&language=en-US&format=json&weekOf=20170801&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"indices",
										"pollen",
										"historical",
										"1week"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "LGA"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "weekOf",
											"value": "20170801"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Pollen Historical (1 Week) by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/indices/pollen/historical/1week?icaoCode=KDEN&language=en-US&format=json&weekOf=20170801&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"indices",
										"pollen",
										"historical",
										"1week"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KDEN"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "weekOf",
											"value": "20170801"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Pollen Historical (1 Week) by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/indices/pollen/historical/1week?placeid=ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7&language=en-US&format=json&weekOf=20170801&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"indices",
										"pollen",
										"historical",
										"1week"
									],
									"query": [
										{
											"key": "placeid",
											"value": "ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "weekOf",
											"value": "20170801"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Pollen Historical (1 Week) by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/indices/pollen/historical/1week?postalKey=10001:US&language=en-US&format=json&weekOf=20170801&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"indices",
										"pollen",
										"historical",
										"1week"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "10001:US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "weekOf",
											"value": "20170801"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Pollen Historical (1 Month) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/indices/pollen/historical/1month?geocode=33.33,-83.22&language=en-US&format=json&yearMonth=201708&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"indices",
										"pollen",
										"historical",
										"1month"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.33,-83.22"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "yearMonth",
											"value": "201708"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Pollen Historical (1 Month) by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/indices/pollen/historical/1month?iataCode=LGA&language=en-US&format=json&yearMonth=201708&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"indices",
										"pollen",
										"historical",
										"1month"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "LGA"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "yearMonth",
											"value": "201708"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Pollen Historical (1 Month) by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/indices/pollen/historical/1month?icaoCode=KATL&language=en-US&format=json&yearMonth=201708&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"indices",
										"pollen",
										"historical",
										"1month"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KATL"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "yearMonth",
											"value": "201708"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Pollen Historical (1 Month) by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/indices/pollen/historical/1month?placeid=ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7&language=en-US&format=json&yearMonth=201708&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"indices",
										"pollen",
										"historical",
										"1month"
									],
									"query": [
										{
											"key": "placeid",
											"value": "ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "yearMonth",
											"value": "201708"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Pollen Historical (1 Month) by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/indices/pollen/historical/1month?postalKey=30339:US&language=en-US&format=json&yearMonth=201708&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"indices",
										"pollen",
										"historical",
										"1month"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "30339:US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "yearMonth",
											"value": "201708"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "U.S. Pollen Observations",
					"item": [
						{
							"name": "Pollen Observations by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/geocode/34.063/-84.217/observations/pollen.json?language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"geocode",
										"34.063",
										"-84.217",
										"observations",
										"pollen.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Pollen Observations by Postal Location Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v1/location/30075:4:US/observations/pollen.json?language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v1",
										"location",
										"30075:4:US",
										"observations",
										"pollen.json"
									],
									"query": [
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "U.S. Tidal Predictions",
					"item": [
						{
							"name": "U.S. Tidal Predictions (3 Days) by Tide Station",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/tides/daily/3day?tide=8670870&units=e&format=json&startDay=01&startMonth=10&startYear=2024&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"tides",
										"daily",
										"3day"
									],
									"query": [
										{
											"key": "tide",
											"value": "8670870"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "startDay",
											"value": "01"
										},
										{
											"key": "startMonth",
											"value": "10"
										},
										{
											"key": "startYear",
											"value": "2024"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "U.S. Tidal Predictions (3 Days) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/tides/daily/3day?geocode=30.39,-86.49&units=e&format=json&startDay=01&startMonth=10&startYear=2024&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"tides",
										"daily",
										"3day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "30.39,-86.49"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "startDay",
											"value": "01"
										},
										{
											"key": "startMonth",
											"value": "10"
										},
										{
											"key": "startYear",
											"value": "2024"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "U.S. Tidal Predictions (3 Days) by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/tides/daily/3day?iataCode=SFO&units=e&format=json&startDay=01&startMonth=10&startYear=2024&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"tides",
										"daily",
										"3day"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "SFO"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "startDay",
											"value": "01"
										},
										{
											"key": "startMonth",
											"value": "10"
										},
										{
											"key": "startYear",
											"value": "2024"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "U.S. Tidal Predictions (3 Days) by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/tides/daily/3day?icaoCode=KLGA&units=e&format=json&startDay=01&startMonth=10&startYear=2024&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"tides",
										"daily",
										"3day"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KLGA"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "startDay",
											"value": "01"
										},
										{
											"key": "startMonth",
											"value": "10"
										},
										{
											"key": "startYear",
											"value": "2024"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "U.S. Tidal Predictions (3 Days) by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/tides/daily/3day?placeid=dab51f120ae4ee6a0359298f849c29a710c09e4c6b28a45975c5557a21ed1153&units=e&format=json&startDay=01&startMonth=10&startYear=2024&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"tides",
										"daily",
										"3day"
									],
									"query": [
										{
											"key": "placeid",
											"value": "dab51f120ae4ee6a0359298f849c29a710c09e4c6b28a45975c5557a21ed1153"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "startDay",
											"value": "01"
										},
										{
											"key": "startMonth",
											"value": "10"
										},
										{
											"key": "startYear",
											"value": "2024"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "U.S. Tidal Predictions (3 Days) by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/forecast/tides/daily/3day?postalKey=94016:US&units=e&format=json&startDay=01&startMonth=10&startYear=2024&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"forecast",
										"tides",
										"daily",
										"3day"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "94016:US"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "startDay",
											"value": "01"
										},
										{
											"key": "startMonth",
											"value": "10"
										},
										{
											"key": "startYear",
											"value": "2024"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Aches & Pains Index",
					"item": [
						{
							"name": "Index Daypart Forecast (3day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/achePain/daypart/3day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"achePain",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/achePain/daypart/5day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"achePain",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/achePain/daypart/7day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"achePain",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/achePain/daypart/10day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"achePain",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/achePain/daypart/15day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"achePain",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (3day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/achePain/daypart/3day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"achePain",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/achePain/daypart/5day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"achePain",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/achePain/daypart/7day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"achePain",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/achePain/daypart/10day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"achePain",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/achePain/daypart/15day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"achePain",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Breathing/Asthma Index",
					"item": [
						{
							"name": "Index Daypart Forecast (3day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/breathing/daypart/3day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"breathing",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/breathing/daypart/5day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"breathing",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/breathing/daypart/7day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"breathing",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/breathing/daypart/10day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"breathing",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/breathing/daypart/15day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"breathing",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (3day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/breathing/daypart/3day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"breathing",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/breathing/daypart/5day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"breathing",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/breathing/daypart/7day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"breathing",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/breathing/daypart/10day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"breathing",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/breathing/daypart/15day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"breathing",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Degree Days Index",
					"item": [
						{
							"name": "Index Daily Forecast (3day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/degreeDays/daily/3day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"degreeDays",
										"daily",
										"3day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daily Forecast (5day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/degreeDays/daily/5day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"degreeDays",
										"daily",
										"5day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daily Forecast (7day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/degreeDays/daily/7day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"degreeDays",
										"daily",
										"7day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daily Forecast (10day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/degreeDays/daily/10day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"degreeDays",
										"daily",
										"10day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daily Forecast (15day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/degreeDays/daily/15day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"degreeDays",
										"daily",
										"15day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daily Forecast (3day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/degreeDays/daily/3day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"degreeDays",
										"daily",
										"3day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daily Forecast (5day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/degreeDays/daily/5day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"degreeDays",
										"daily",
										"5day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daily Forecast (7day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/degreeDays/daily/7day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"degreeDays",
										"daily",
										"7day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daily Forecast (10day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/degreeDays/daily/10day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"degreeDays",
										"daily",
										"10day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daily Forecast (15day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/degreeDays/daily/15day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"degreeDays",
										"daily",
										"15day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Driving Difficulty Index",
					"item": [
						{
							"name": "Index Current Conditions by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/current?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"current"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Current Conditions by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/current?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"current"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (3day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/daypart/3day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/daypart/5day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/daypart/7day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/daypart/10day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/daypart/15day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (3day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/daypart/3day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/daypart/5day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/daypart/7day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/daypart/10day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/daypart/15day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (6hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/hourly/6hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"hourly",
										"6hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (24hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/hourly/24hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"hourly",
										"24hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (48hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/hourly/48hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"hourly",
										"48hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (72hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/hourly/72hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"hourly",
										"72hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (120hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/hourly/120hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"hourly",
										"120hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (240hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/hourly/240hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"hourly",
										"240hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (360hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/hourly/360hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"hourly",
										"360hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (6hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/hourly/6hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"hourly",
										"6hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (24hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/hourly/24hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"hourly",
										"24hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (48hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/hourly/48hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"hourly",
										"48hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (72hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/hourly/72hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"hourly",
										"72hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (120hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/hourly/120hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"hourly",
										"120hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (240hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/hourly/240hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"hourly",
										"240hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (360hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/hourly/360hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"hourly",
										"360hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Fifteen Minute Forecast by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/fifteenminute?format=json&language=en-US&apiKey={{yourApiKey}}&geocode=33.74,-84.39",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"fifteenminute"
									],
									"query": [
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										},
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Fifteen Minute Forecast by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drivingDifficulty/fifteenminute?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drivingDifficulty",
										"fifteenminute"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Dry Skin Index",
					"item": [
						{
							"name": "Index Daypart Forecast (3day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/daypart/3day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/daypart/5day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/daypart/7day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/daypart/10day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/daypart/15day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (3day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/daypart/3day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/daypart/5day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/daypart/7day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/daypart/10day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/daypart/15day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (24hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/hourly/24hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"hourly",
										"24hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (48hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/hourly/48hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"hourly",
										"48hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (72hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/hourly/72hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"hourly",
										"72hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (120hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/hourly/120hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"hourly",
										"120hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (240hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/hourly/240hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"hourly",
										"240hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (360hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/hourly/360hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"hourly",
										"360hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (24hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/hourly/24hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"hourly",
										"24hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (48hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/hourly/48hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"hourly",
										"48hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (72hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/hourly/72hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"hourly",
										"72hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (120hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/hourly/120hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"hourly",
										"120hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (240hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/hourly/240hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"hourly",
										"240hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (360hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/drySkin/hourly/360hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"drySkin",
										"hourly",
										"360hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Frizz Index",
					"item": [
						{
							"name": "Index Daypart Forecast (3day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/frizz/daypart/3day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"frizz",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/frizz/daypart/5day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"frizz",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/frizz/daypart/7day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"frizz",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/frizz/daypart/10day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"frizz",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/frizz/daypart/15day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"frizz",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (3day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/frizz/daypart/3day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"frizz",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/frizz/daypart/5day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"frizz",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/frizz/daypart/7day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"frizz",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/frizz/daypart/10day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"frizz",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/frizz/daypart/15day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"frizz",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Frost Potential Index",
					"item": [
						{
							"name": "Index Daypart Forecast (3day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/frost/daypart/3day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"frost",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/frost/daypart/5day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"frost",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/frost/daypart/7day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"frost",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/frost/daypart/10day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"frost",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/frost/daypart/15day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"frost",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (3day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/frost/daypart/3day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"frost",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/frost/daypart/5day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"frost",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/frost/daypart/7day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"frost",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/frost/daypart/10day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"frost",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/frost/daypart/15day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"frost",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Golf Index",
					"item": [
						{
							"name": "Index Daypart Forecast (3day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/daypart/3day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/daypart/5day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/daypart/7day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/daypart/10day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/daypart/15day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (3day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/daypart/3day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/daypart/5day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/daypart/7day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/daypart/10day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/daypart/15day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (24hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/hourly/24hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"hourly",
										"24hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (48hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/hourly/48hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"hourly",
										"48hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (72hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/hourly/72hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"hourly",
										"72hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (120hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/hourly/120hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"hourly",
										"120hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (240hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/hourly/240hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"hourly",
										"240hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (360hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/hourly/360hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"hourly",
										"360hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (24hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/hourly/24hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"hourly",
										"24hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (48hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/hourly/48hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"hourly",
										"48hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (72hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/hourly/72hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"hourly",
										"72hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (120hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/hourly/120hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"hourly",
										"120hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (240hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/hourly/240hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"hourly",
										"240hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (360hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/golf/hourly/360hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"golf",
										"hourly",
										"360hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Heating and Cooling Index",
					"item": [
						{
							"name": "Index Daypart Forecast (3day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/heatCool/daypart/3day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"heatCool",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/heatCool/daypart/5day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"heatCool",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/heatCool/daypart/7day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"heatCool",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/heatCool/daypart/10day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"heatCool",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/heatCool/daypart/15day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"heatCool",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (3day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/heatCool/daypart/3day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"heatCool",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/heatCool/daypart/5day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"heatCool",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/heatCool/daypart/7day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"heatCool",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/heatCool/daypart/10day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"heatCool",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/heatCool/daypart/15day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"heatCool",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Leisure Travel Index",
					"item": [
						{
							"name": "Index Daypart Forecast (3day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/daypart/3day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/daypart/5day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/daypart/7day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/daypart/10day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/daypart/15day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (3day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/daypart/3day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/daypart/5day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/daypart/7day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/daypart/10day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/daypart/15day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (24hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/hourly/24hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"hourly",
										"24hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (48hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/hourly/48hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"hourly",
										"48hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (72hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/hourly/72hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"hourly",
										"72hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (120hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/hourly/120hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"hourly",
										"120hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (240hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/hourly/240hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"hourly",
										"240hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (360hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/hourly/360hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"hourly",
										"360hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (24hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/hourly/24hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"hourly",
										"24hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (48hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/hourly/48hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"hourly",
										"48hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (72hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/hourly/72hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"hourly",
										"72hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (120hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/hourly/120hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"hourly",
										"120hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (240hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/hourly/240hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"hourly",
										"240hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (360hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/travel/hourly/360hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"travel",
										"hourly",
										"360hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Mosquito Activity Index",
					"item": [
						{
							"name": "Index Daily Forecast (3day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/mosquito/daily/3day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"mosquito",
										"daily",
										"3day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daily Forecast (5day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/mosquito/daily/5day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"mosquito",
										"daily",
										"5day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daily Forecast (7day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/mosquito/daily/7day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"mosquito",
										"daily",
										"7day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daily Forecast (10day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/mosquito/daily/10day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"mosquito",
										"daily",
										"10day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daily Forecast (15day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/mosquito/daily/15day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"mosquito",
										"daily",
										"15day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daily Forecast (3day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/mosquito/daily/3day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"mosquito",
										"daily",
										"3day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daily Forecast (5day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/mosquito/daily/5day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"mosquito",
										"daily",
										"5day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daily Forecast (7day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/mosquito/daily/7day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"mosquito",
										"daily",
										"7day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daily Forecast (10day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/mosquito/daily/10day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"mosquito",
										"daily",
										"10day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daily Forecast (15day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/mosquito/daily/15day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"mosquito",
										"daily",
										"15day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Pollen Index",
					"item": [
						{
							"name": "Index Daypart Forecast (3day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/pollen/daypart/3day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"pollen",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/pollen/daypart/5day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"pollen",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/pollen/daypart/7day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"pollen",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/pollen/daypart/10day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"pollen",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/pollen/daypart/15day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"pollen",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (3day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/pollen/daypart/3day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"pollen",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/pollen/daypart/5day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"pollen",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/pollen/daypart/7day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"pollen",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/pollen/daypart/10day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"pollen",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/pollen/daypart/15day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"pollen",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Running Weather Index",
					"item": [
						{
							"name": "Index Daypart Forecast (3day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/daypart/3day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/daypart/5day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/daypart/7day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/daypart/10day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/daypart/15day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (3day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/daypart/3day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/daypart/5day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/daypart/7day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/daypart/10day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/daypart/15day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (24hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/hourly/24hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"hourly",
										"24hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (48hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/hourly/48hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"hourly",
										"48hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (72hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/hourly/72hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"hourly",
										"72hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (120hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/hourly/120hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"hourly",
										"120hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (240hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/hourly/240hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"hourly",
										"240hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (360hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/hourly/360hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"hourly",
										"360hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (24hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/hourly/24hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"hourly",
										"24hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (48hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/hourly/48hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"hourly",
										"48hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (72hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/hourly/72hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"hourly",
										"72hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (120hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/hourly/120hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"hourly",
										"120hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (240hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/hourly/240hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"hourly",
										"240hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (360hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/runWeather/hourly/360hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"runWeather",
										"hourly",
										"360hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Ski Index",
					"item": [
						{
							"name": "Index Daypart Forecast (3day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/ski/daypart/3day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"ski",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/ski/daypart/5day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"ski",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/ski/daypart/7day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"ski",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/ski/daypart/10day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"ski",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/ski/daypart/15day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"ski",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (3day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/ski/daypart/3day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"ski",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/ski/daypart/5day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"ski",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/ski/daypart/7day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"ski",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/ski/daypart/10day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"ski",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/ski/daypart/15day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"ski",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Static Electricity Index",
					"item": [
						{
							"name": "Index Daypart Forecast (3day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/static/daypart/3day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"static",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/static/daypart/5day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"static",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/static/daypart/7day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"static",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/static/daypart/10day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"static",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/static/daypart/15day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"static",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (3day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/static/daypart/3day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"static",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/static/daypart/5day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"static",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/static/daypart/7day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"static",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/static/daypart/10day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"static",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/static/daypart/15day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"static",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "UV Index",
					"item": [
						{
							"name": "Index Current Conditions by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/current?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"current"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Current Conditions by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/current?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"current"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (3day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/daypart/3day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/daypart/5day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/daypart/7day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/daypart/10day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/daypart/15day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (3day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/daypart/3day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/daypart/5day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/daypart/7day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/daypart/10day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/daypart/15day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (24hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/hourly/24hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"hourly",
										"24hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (48hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/hourly/48hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"hourly",
										"48hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (72hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/hourly/72hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"hourly",
										"72hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (120hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/hourly/120hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"hourly",
										"120hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (240hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/hourly/240hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"hourly",
										"240hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (360hour) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/hourly/360hour?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"hourly",
										"360hour"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (24hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/hourly/24hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"hourly",
										"24hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (48hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/hourly/48hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"hourly",
										"48hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (72hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/hourly/72hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"hourly",
										"72hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (120hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/hourly/120hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"hourly",
										"120hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (240hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/hourly/240hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"hourly",
										"240hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Hourly Forecast (360hour) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/hourly/360hour?postalCode=94608&countryCode=US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"hourly",
										"360hour"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Fifteen Minute Forecast by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/fifteenminute?geocode=33.74,-84.39&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"fifteenminute"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Fifteen Minute Forecast by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/uv/fifteenminute?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"uv",
										"fifteenminute"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Watering Needs Index",
					"item": [
						{
							"name": "Index Daypart Forecast (3day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/wateringNeeds/daypart/3day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"wateringNeeds",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/wateringNeeds/daypart/5day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"wateringNeeds",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/wateringNeeds/daypart/7day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"wateringNeeds",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/wateringNeeds/daypart/10day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"wateringNeeds",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/wateringNeeds/daypart/15day?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"wateringNeeds",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (3day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/wateringNeeds/daypart/3day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"wateringNeeds",
										"daypart",
										"3day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (5day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/wateringNeeds/daypart/5day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"wateringNeeds",
										"daypart",
										"5day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (7day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/wateringNeeds/daypart/7day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"wateringNeeds",
										"daypart",
										"7day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (10day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/wateringNeeds/daypart/10day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"wateringNeeds",
										"daypart",
										"10day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Index Daypart Forecast (15day) by PostalCode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/indices/wateringNeeds/daypart/15day?postalCode=94608&countryCode=US&format=json&language=en-US&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"indices",
										"wateringNeeds",
										"daypart",
										"15day"
									],
									"query": [
										{
											"key": "postalCode",
											"value": "94608"
										},
										{
											"key": "countryCode",
											"value": "US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				}
			]
		},
		{
			"name": "Location Services",
			"item": [
				{
					"name": "Location Point",
					"item": [
						{
							"name": "Search Location by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/location/point?geocode=33.74,-84.39&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"location",
										"point"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Search Location by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/location/point?postalKey=30339:US&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"location",
										"point"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "30339:US"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Search Location by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/location/point?iataCode=ATL&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"location",
										"point"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "ATL"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Search Location by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/location/point?icaoCode=KATL&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"location",
										"point"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KATL"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Search Location by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/location/point?placeid=ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"location",
										"point"
									],
									"query": [
										{
											"key": "placeid",
											"value": "ee0214ae7fb1d265f3e4d2509e77557119b2cac9d0ac1013b593c74a1567f2b7"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Location Search",
					"item": [
						{
							"name": "Search Locations by Query String",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/location/search?query=atlanta&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"location",
										"search"
									],
									"query": [
										{
											"key": "query",
											"value": "atlanta"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Search Locations by Query String with locationType",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/location/search?query=Manhattan&locationType=neighborhood&language=en-US&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"location",
										"search"
									],
									"query": [
										{
											"key": "query",
											"value": "Manhattan"
										},
										{
											"key": "locationType",
											"value": "neighborhood"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Location Near",
					"item": [
						{
							"name": "Search Nearby Airports by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/location/near?geocode=33.74,-84.39&product=airport&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"location",
										"near"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "product",
											"value": "airport"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Search Nearby Observation Stations by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/location/near?geocode=33.74,-84.39&product=observation&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"location",
										"near"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "product",
											"value": "observation"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Search Nearby PWS by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/location/near?geocode=33.74,-84.39&product=pws&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"location",
										"near"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "product",
											"value": "pws"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Search Nearby Ski Resorts by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/location/near?geocode=33.74,-84.39&product=ski&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"location",
										"near"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.74,-84.39"
										},
										{
											"key": "product",
											"value": "ski"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Location Boundary",
					"item": [
						{
							"name": "Search Boundary by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/location/boundary?geocode=33.33,-83.22&product=county&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"location",
										"boundary"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.33,-83.22"
										},
										{
											"key": "product",
											"value": "county"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Search Boundary by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/location/boundary?iataCode=ATL&product=county&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"location",
										"boundary"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "ATL"
										},
										{
											"key": "product",
											"value": "county"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Search Boundary by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/location/boundary?icaoCode=KATL&product=county&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"location",
										"boundary"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "KATL"
										},
										{
											"key": "product",
											"value": "county"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Search Boundary by Place Id",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/location/boundary?placeid=25d07eca1bcda02800c1a9e699d7eb1c8132cad9bc2d6efa8a2531f0ee4a81cd&product=county&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"location",
										"boundary"
									],
									"query": [
										{
											"key": "placeid",
											"value": "25d07eca1bcda02800c1a9e699d7eb1c8132cad9bc2d6efa8a2531f0ee4a81cd"
										},
										{
											"key": "product",
											"value": "county"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Search Boundary by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/location/boundary?postalKey=98101:US&product=county&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"location",
										"boundary"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "98101:US"
										},
										{
											"key": "product",
											"value": "county"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				}
			]
		},
		{
			"name": "History on Demand",
			"item": [
				{
					"name": "Historical Data for Analytical Tooling",
					"item": [
						{
							"name": "Historical Data for Analytical Tooling R2 by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/observations/historical/analytical/r2?geocode=33.43,-84.32&productId=Temperature&startDate=20170101&endDate=20170630&language=en-US&units=s&format=csv&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"observations",
										"historical",
										"analytical",
										"r2"
									],
									"query": [
										{
											"key": "geocode",
											"value": "33.43,-84.32"
										},
										{
											"key": "productId",
											"value": "Temperature"
										},
										{
											"key": "startDate",
											"value": "20170101"
										},
										{
											"key": "endDate",
											"value": "20170630"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "s"
										},
										{
											"key": "format",
											"value": "csv"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Historical Data for Analytical Tooling R2 by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/observations/historical/analytical/r2?postalKey=81657:US&productId=Temperature&startDate=20170101&endDate=20170630&language=en-US&units=s&format=csv&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"observations",
										"historical",
										"analytical",
										"r2"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "81657:US"
										},
										{
											"key": "productId",
											"value": "Temperature"
										},
										{
											"key": "startDate",
											"value": "20170101"
										},
										{
											"key": "endDate",
											"value": "20170630"
										},
										{
											"key": "language",
											"value": "en-US"
										},
										{
											"key": "units",
											"value": "s"
										},
										{
											"key": "format",
											"value": "csv"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Historical Data for Analytical Tooling R2 Product Discovery",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/observations/historical/analytical/r2/products?apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"observations",
										"historical",
										"analytical",
										"r2",
										"products"
									],
									"query": [
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "History on Demand",
					"item": [
						{
							"name": "History on Demand by Geocode",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/hod/r1/direct?geocode=25.80,-80.12&startDateTime=2020-05-01T00Z&endDateTime=2020-05-15T00Z&format=json&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"hod",
										"r1",
										"direct"
									],
									"query": [
										{
											"key": "geocode",
											"value": "25.80,-80.12"
										},
										{
											"key": "startDateTime",
											"value": "2020-05-01T00Z"
										},
										{
											"key": "endDateTime",
											"value": "2020-05-15T00Z"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "History on Demand by WKT",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/hod/r1/direct?wkt=POINT%20(25.807199%20-80.122034)&startDateTime=2020-05-01T00Z&endDateTime=2020-05-15T00Z&format=json&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"hod",
										"r1",
										"direct"
									],
									"query": [
										{
											"key": "wkt",
											"value": "POINT%20(25.807199%20-80.122034)"
										},
										{
											"key": "startDateTime",
											"value": "2020-05-01T00Z"
										},
										{
											"key": "endDateTime",
											"value": "2020-05-15T00Z"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "History on Demand by IATA Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/hod/r1/direct?iataCode=CGH&startDateTime=2020-05-01T00Z&endDateTime=2020-05-15T00Z&format=json&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"hod",
										"r1",
										"direct"
									],
									"query": [
										{
											"key": "iataCode",
											"value": "CGH"
										},
										{
											"key": "startDateTime",
											"value": "2020-05-01T00Z"
										},
										{
											"key": "endDateTime",
											"value": "2020-05-15T00Z"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "History on Demand by ICAO Code",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/hod/r1/direct?icaoCode=VQPR&startDateTime=2020-05-01T00Z&endDateTime=2020-05-15T00Z&format=json&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"hod",
										"r1",
										"direct"
									],
									"query": [
										{
											"key": "icaoCode",
											"value": "VQPR"
										},
										{
											"key": "startDateTime",
											"value": "2020-05-01T00Z"
										},
										{
											"key": "endDateTime",
											"value": "2020-05-15T00Z"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "History on Demand by Postal Key",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/hod/r1/direct?postalKey=10001:US&startDateTime=2020-05-01T00Z&endDateTime=2020-05-15T00Z&format=json&units=e&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"hod",
										"r1",
										"direct"
									],
									"query": [
										{
											"key": "postalKey",
											"value": "10001:US"
										},
										{
											"key": "startDateTime",
											"value": "2020-05-01T00Z"
										},
										{
											"key": "endDateTime",
											"value": "2020-05-15T00Z"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "units",
											"value": "e"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "History on Demand Utility by Points Contained",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/wx/hod/utility?function=pointsContained&format=json&wkt=BBOX (41.9 -88.4, 42.0 -88.3)&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"hod",
										"utility"
									],
									"query": [
										{
											"key": "function",
											"value": "pointsContained"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "wkt",
											"value": "BBOX (41.9 -88.4, 42.0 -88.3)"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "History on Demand Utility by Neighbor Map",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "[\n   {\n       \"latitude\" : 42.000,\n       \"longitude\" : -89.000\n   },\n   {\n       \"latitude\" : 42.001,\n       \"longitude\" : -89.001000000000\n   },\n   {\n       \"latitude\" : 21.340,\n       \"longitude\" : 15.680\n   },\n   {\n       \"latitude\" : 21.342,\n       \"longitude\" : 15.681\n   },\n   {\n       \"latitude\" : 21.346,\n       \"longitude\" : 15.687\n   }\n]\n\n",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "https://api.weather.com/v3/wx/hod/utility?function=neighborMap&format=json&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"wx",
										"hod",
										"utility"
									],
									"query": [
										{
											"key": "function",
											"value": "neighborMap"
										},
										{
											"key": "format",
											"value": "json"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				}
			]
		},
		{
			"name": "PWS",
			"item": [
				{
					"name": "PWS Observations by Station Id",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://api.weather.com/v2/pws/observations/current?stationId=KMAHANOV10&format=json&units=e&apiKey={{yourApiKey}}",
							"protocol": "https",
							"host": [
								"api",
								"weather",
								"com"
							],
							"path": [
								"v2",
								"pws",
								"observations",
								"current"
							],
							"query": [
								{
									"key": "stationId",
									"value": "KMAHANOV10"
								},
								{
									"key": "format",
									"value": "json"
								},
								{
									"key": "units",
									"value": "e"
								},
								{
									"key": "apiKey",
									"value": "{{yourApiKey}}"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "PWS Daily Summary (7 Day History) by Station Id",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://api.weather.com/v2/pws/dailysummary/7day?stationId=KMAHANOV10&format=json&units=e&apiKey={{yourApiKey}}",
							"protocol": "https",
							"host": [
								"api",
								"weather",
								"com"
							],
							"path": [
								"v2",
								"pws",
								"dailysummary",
								"7day"
							],
							"query": [
								{
									"key": "stationId",
									"value": "KMAHANOV10"
								},
								{
									"key": "format",
									"value": "json"
								},
								{
									"key": "units",
									"value": "e"
								},
								{
									"key": "apiKey",
									"value": "{{yourApiKey}}"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "PWS Recent History (1 Day Rapid History) by Station Id",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://api.weather.com/v2/pws/observations/all/1day?stationId=KMAHANOV10&format=json&units=e&apiKey={{yourApiKey}}",
							"protocol": "https",
							"host": [
								"api",
								"weather",
								"com"
							],
							"path": [
								"v2",
								"pws",
								"observations",
								"all",
								"1day"
							],
							"query": [
								{
									"key": "stationId",
									"value": "KMAHANOV10"
								},
								{
									"key": "format",
									"value": "json"
								},
								{
									"key": "units",
									"value": "e"
								},
								{
									"key": "apiKey",
									"value": "{{yourApiKey}}"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "PWS Recent History (7 Day Hourly History) by Station Id",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://api.weather.com/v2/pws/observations/hourly/7day?stationId=KMAHANOV10&format=json&units=e&apiKey={{yourApiKey}}",
							"protocol": "https",
							"host": [
								"api",
								"weather",
								"com"
							],
							"path": [
								"v2",
								"pws",
								"observations",
								"hourly",
								"7day"
							],
							"query": [
								{
									"key": "stationId",
									"value": "KMAHANOV10"
								},
								{
									"key": "format",
									"value": "json"
								},
								{
									"key": "units",
									"value": "e"
								},
								{
									"key": "apiKey",
									"value": "{{yourApiKey}}"
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Weather Imagery",
			"item": [
				{
					"name": "Tiler/Featurizer Observations (Raster)",
					"item": [
						{
							"name": "Step 1: Get Tiler Info (Observations)",
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/tiler/info?products={{productId:variableId}}&meta=true&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"tiler",
										"info"
									],
									"query": [
										{
											"key": "products",
											"value": "{{productId:variableId}}"
										},
										{
											"key": "meta",
											"value": "true"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Step 2a: Get Tiler Data (Observations)",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/tiler/data?products={{productId:variableId}}&t={{epochTimestamp}}&lod={{levelofDetail}}&x={{horizontalLocation}}&y={{verticalLocation}}&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"tiler",
										"data"
									],
									"query": [
										{
											"key": "products",
											"value": "{{productId:variableId}}"
										},
										{
											"key": "t",
											"value": "{{epochTimestamp}}"
										},
										{
											"key": "lod",
											"value": "{{levelofDetail}}"
										},
										{
											"key": "x",
											"value": "{{horizontalLocation}}"
										},
										{
											"key": "y",
											"value": "{{verticalLocation}}"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Step 2b: Get Featurizer Tile (Observations)",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/featurizer/tile?product={{productId:variableId}}&t={{epochTimestamp}}&lod={{levelofDetail}}&x={{horizontalLocation}}&y={{verticalLocation}}&threshold=0&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"featurizer",
										"tile"
									],
									"query": [
										{
											"key": "product",
											"value": "{{productId:variableId}}"
										},
										{
											"key": "t",
											"value": "{{epochTimestamp}}"
										},
										{
											"key": "lod",
											"value": "{{levelofDetail}}"
										},
										{
											"key": "x",
											"value": "{{horizontalLocation}}"
										},
										{
											"key": "y",
											"value": "{{verticalLocation}}"
										},
										{
											"key": "threshold",
											"value": "0"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Tiler/Featurizer Forecasts (Raster)",
					"item": [
						{
							"name": "Step 1: Get Tiler Info (Forecasts)",
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/tiler/info?products={{productId:variableId}}&meta=true&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"tiler",
										"info"
									],
									"query": [
										{
											"key": "products",
											"value": "{{productId:variableId}}"
										},
										{
											"key": "meta",
											"value": "true"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Step 2a: Get Tiler Data (Forecasts)",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/tiler/data?products={{productId:variableId}}&rt={{epochTimestamp}}&t={{epochTimestamp}}&lod={{levelofDetail}}&x={{horizontalLocation}}&y={{verticalLocation}}&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"tiler",
										"data"
									],
									"query": [
										{
											"key": "products",
											"value": "{{productId:variableId}}"
										},
										{
											"key": "rt",
											"value": "{{epochTimestamp}}"
										},
										{
											"key": "t",
											"value": "{{epochTimestamp}}"
										},
										{
											"key": "lod",
											"value": "{{levelofDetail}}"
										},
										{
											"key": "x",
											"value": "{{horizontalLocation}}"
										},
										{
											"key": "y",
											"value": "{{verticalLocation}}"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Step 2b: Get Featurizer Tile (Forecasts)",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/featurizer/tile?product={{productId:variableId}}&rt={{epochTimestamp}}&t={{epochTimestamp}}&lod={{levelofDetail}}&x={{horizontalLocation}}&y={{verticalLocation}}&threshold=280&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"featurizer",
										"tile"
									],
									"query": [
										{
											"key": "product",
											"value": "{{productId:variableId}}"
										},
										{
											"key": "rt",
											"value": "{{epochTimestamp}}"
										},
										{
											"key": "t",
											"value": "{{epochTimestamp}}"
										},
										{
											"key": "lod",
											"value": "{{levelofDetail}}"
										},
										{
											"key": "x",
											"value": "{{horizontalLocation}}"
										},
										{
											"key": "y",
											"value": "{{verticalLocation}}"
										},
										{
											"key": "threshold",
											"value": "280"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Step 2b: Get Featurizer Feature (Native Resolution)",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/featurizer/feature?product={{productId:variableId}}&rt={{epochTimestamp}}&t={{epochTimestamp}}&threshold=0&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"featurizer",
										"feature"
									],
									"query": [
										{
											"key": "product",
											"value": "{{productId:variableId}}"
										},
										{
											"key": "rt",
											"value": "{{epochTimestamp}}"
										},
										{
											"key": "t",
											"value": "{{epochTimestamp}}"
										},
										{
											"key": "threshold",
											"value": "0"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Image TileServer",
					"item": [
						{
							"name": "Step 1: Get Product Set Info",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/TileServer/series/productSet/marine?apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"TileServer",
										"series",
										"productSet",
										"marine"
									],
									"query": [
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Step 2: Get Forecast Tile Image",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/TileServer/tile/{{productId}}?ts={{epochTimestamp}}&fts={{epochTimestamp}}&xyz=0:0:1&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"TileServer",
										"tile",
										"{{productId}}"
									],
									"query": [
										{
											"key": "ts",
											"value": "{{epochTimestamp}}"
										},
										{
											"key": "fts",
											"value": "{{epochTimestamp}}"
										},
										{
											"key": "xyz",
											"value": "0:0:1"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Step 2: Get Observations Tile Image",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v3/TileServer/tile/{{productId}}?ts={{epochTimestamp}}&xyz=0:0:1&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v3",
										"TileServer",
										"tile",
										"{{productId}}"
									],
									"query": [
										{
											"key": "ts",
											"value": "{{epochTimestamp}}"
										},
										{
											"key": "xyz",
											"value": "0:0:1"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Vector API",
					"item": [
						{
							"name": "Step 1: Get Product Info",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/vector-api/products/{{productId}}/info?meta=true&max-times=12&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"vector-api",
										"products",
										"{{productId}}",
										"info"
									],
									"query": [
										{
											"key": "meta",
											"value": "true"
										},
										{
											"key": "max-times",
											"value": "12"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Step 2: Get Features for a Single Tile",
							"request": {
								"auth": {
									"type": "noauth"
								},
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://api.weather.com/v2/vector-api/products/{{productId}}/features?time={{epochTimestamp}}&lod={{levelOfDetail}}&x={{horizontalLocation}}&y={{verticalLocation}}&tile-size=256&apiKey={{yourApiKey}}",
									"protocol": "https",
									"host": [
										"api",
										"weather",
										"com"
									],
									"path": [
										"v2",
										"vector-api",
										"products",
										"{{productId}}",
										"features"
									],
									"query": [
										{
											"key": "time",
											"value": "{{epochTimestamp}}"
										},
										{
											"key": "lod",
											"value": "{{levelOfDetail}}"
										},
										{
											"key": "x",
											"value": "{{horizontalLocation}}"
										},
										{
											"key": "y",
											"value": "{{verticalLocation}}"
										},
										{
											"key": "tile-size",
											"value": "256"
										},
										{
											"key": "apiKey",
											"value": "{{yourApiKey}}"
										}
									]
								}
							},
							"response": []
						}
					]
				}
			]
		}
	]
}